home *** CD-ROM | disk | FTP | other *** search
/ An Introduction to Progr…l Basic 6.0 (4th Edition) / An Introduction to Programming using Visual Basic 6.0.iso / COMMON / TOOLS / VB / CABINETS / MSDAO350.CAB / icontrols / RichText / PARAFORMAT.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-01-08  |  992 b   |  17 lines

  1. package icontrols.RichText;
  2.  
  3. import com.ms.dll.DllLib;
  4.  
  5. public class PARAFORMAT {
  6.    public int cbSize = DllLib.sizeOf(this);
  7.    public int dwMask;
  8.    public short wNumbering;
  9.    public short wReserved;
  10.    public int dxStartIndent;
  11.    public int dxRightIndent;
  12.    public int dxOffset;
  13.    public short wAlignment;
  14.    public short cTabCount;
  15.    public int[] rgxTabs = new int[32];
  16. }
  17.